/* ===== OMEGA – Hakkımızda Dilimi (scoped) ===== */
.omega-about-slice{
  --brand:#01b6e9;
  --ink:#0f172a;
  --muted:#4b5563;
  --card:#ffffff;
  --line:#e9eef6;
  --radius:22px;

  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  padding: clamp(24px,4.5vw,56px) 0;
  background:
    radial-gradient(1200px 300px at 50% 100%, rgba(1,182,233,.06), transparent 55%);
}

.omega-about-slice .oas-wrap{
  width:min(1200px,94%);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px,3vw,38px);
  align-items:center;
}

.omega-about-slice .oas-copy{
  padding-right: clamp(0px,1.5vw,10px);
}

.omega-about-slice .oas-eyebrow{
  margin:0 0 8px;
  font-weight:700;
  letter-spacing:.2px;
  color:#2a3342;
  opacity:.75;
}

.omega-about-slice .oas-title{
  margin:0 0 10px;
  font-size: clamp(40px,7vw,74px);
  line-height:1.02;
  font-weight:900;
}

.omega-about-slice .oas-lead{
  margin:0 0 18px;
  font-size: clamp(15px,1.35vw,18px);
  line-height:1.9;
  color:var(--muted);
}

/* Button */
.omega-about-slice .oas-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: .78rem 1.1rem;
  border-radius: 12px;
  text-decoration:none; font-weight:800;
  background: var(--brand); color:#fff; border:1px solid var(--brand);
  box-shadow: 0 16px 40px rgba(1,182,233,.25);
  transition: transform .15s ease, box-shadow .18s ease, background .15s ease;
}
.omega-about-slice .oas-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(1,182,233,.35);
}

/* Media */
.omega-about-slice .oas-media{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  background:var(--card);
  border:1px solid var(--line);
  box-shadow: 0 24px 60px rgba(15,23,42,.10);
}
.omega-about-slice .oas-media img{
  width:100%;
  height: clamp(240px,36vw,360px);
  object-fit: cover;
  display:block;
}

/* Responsive: mobilde tek kolon */
@media (max-width: 980px){
  .omega-about-slice .oas-wrap{
    grid-template-columns: 1fr;
  }
  .omega-about-slice .oas-copy{
    order:1;
  }
  .omega-about-slice .oas-media{
    order:2;
  }
}
